home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9207.ZIP / FILTER.ZIP / VIEWER.DEF < prev    next >
Text File  |  1992-01-27  |  927b  |  35 lines

  1. ;     FILE    : viewer.def
  2. ;    PURPOSE : module-definition file for graphic file viewer.
  3. ;⌐ 1992, Evangelo Prodromou. All rights reserved.    
  4.  
  5. NAME          Viewer       ; viewer application's module name.
  6.  
  7. DESCRIPTION   'Graphics Viewer for Windows'
  8.  
  9. EXETYPE      WINDOWS       ; defines a Windows application
  10.  
  11. STUB         'WINSTUB.EXE' ; runs if application is launched outside Windows.
  12.  
  13. ; Next line defines how code segments can be moved in memory.
  14.  
  15. CODE  PRELOAD MOVEABLE DISCARDABLE
  16.  
  17. ; Next line defines how data can be moved in memory.
  18.  
  19. DATA  PRELOAD MOVEABLE MULTIPLE
  20.  
  21. ; Next line defines size of the local heap.
  22.  
  23. HEAPSIZE     1024
  24.  
  25. ; Next line defines size of the stack.
  26.  
  27. STACKSIZE    5120       
  28.  
  29. ; Next line defines aliases for functions that will be called by Windows.
  30.  
  31. EXPORTS
  32.     MainWndProc   @1   ; processes messages for main window.
  33.     AboutDlgProc  @2   ; processes messages for AboutBox dialog box.
  34.  
  35.